ssh-key 登陆

ssh-key 登陆

  • ssh-copy-id -i .ssh/id_rsa.pub root@xxxx
  • 使用前提是远程服务器的.ssh目录权限要正确
  • root的权限必须是root:root(当登陆的是root用户的时候尤其重要)

  • 目标log文件地址: /var/log/secure

    Authentication refused: bad ownership or modes for directory /root
    出现上面的错误,即

    1
    2
    chmod 0750 /root -R
    #chown root.root root

禁止密码登录

  • centos 6.*

    修改 /etc/ssh/sshd_config文件

  • PasswordAuthentication : no
  • ChallengeResponseAuthentication : no
  • PubkeyAuthentication: yes

    重启sshd服务,/etc/init.d/sshd restart

#personal/技术储备/ssh登陆